home *** CD-ROM | disk | FTP | other *** search
- global kObjTypeListCastNum, gObjNumList
-
- on initObjConst
- set kObjTypeListCastNum to 5000
- end
-
- on initObjGlobal
- initObjNumList()
- end
-
- on initObjNumList
- set gObjNumList to [#temp: 0]
- set aCastNum to 0
- set aObjTypeList to the text of cast kObjTypeListCastNum
- repeat with aTypeCount = 1 to the number of lines in aObjTypeList
- set aTypeAndNum to line aTypeCount of aObjTypeList
- if item 2 of aTypeAndNum = "++" then
- set aCastNum to aCastNum + 1
- else
- set aCastNum to integer(item 2 of aTypeAndNum)
- end if
- addProp(gObjNumList, "#" & item 1 of aTypeAndNum, aCastNum)
- end repeat
- end
-
- on NewObj vObjType, vParam1, vParam2, vParam3
- set aObjTypeCastNum to getaProp(gObjNumList, "#" & vObjType)
- if voidp(aObjTypeCastNum) then
- errorAlert("newObj failed" & RETURN & "Can't find obj type : " & vObjType)
- halt()
- end if
- return birth(script aObjTypeCastNum, vParam1, vParam2, vParam3)
- end
-